.comic-grid {
    display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    padding: 20px;
}

.comic-grid a {
    color: #777;
    font-weight: bold;
    text-decoration: none; 
    transition: transform 0.3s ease-in-out;
}

.comic-grid a:hover {
    transform: scale(1.02);
}

.comic-preview {
    max-width: 150px;
    max-height: 800px;
    padding: 10px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.comic-preview:hover {
    transform: scale(1.02);
}

.comic-preview img {
    /* width: 100%; */
    object-position: bottom;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
	margin-bottom: 10px;
}

.comic-preview:hover img {
    transform: scale(1.1);
	margin-bottom: 10px;
}

.comic-preview h2 {
    margin-top: 10px;
    font-size: 1em;
    text-align: center;
	text-transform: uppercase;
}

.comic-preview p {
    color: #555;
	line-height: 1.9;
}

.comic-preview a {
    display: block;
    margin-top: 10px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

